home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / pckat12.zip / KATAD.BAT < prev    next >
DOS Batch File  |  1986-01-19  |  2KB  |  42 lines

  1. echo off
  2. echo :   PC-KAT (C) COPYRIGHT 1986, R.H. MARTIN.  PRINT PC-KAT ANNOUNCEMENT.
  3. echo :
  4. echo :       Please read and answer 1, 2 or 3:
  5. echo :
  6. echo :       The PC-KAT Announcement is not needed to run PC-KAT.  You may how-
  7. echo :       ever desire to inform someone else about PC-KAT using just 1 page
  8. echo :       of information.  The PC-KAT Announcement requires that you can
  9. echo :       print 132 columns of information on your output paper.  You can
  10. echo :       choose to accomplish this in two ways, one of which requires that
  11. echo :       have beforehand setup printer control codes with the print program,
  12. echo :       KPRINT.EXE which comes with PC-KAT.  It requires that you have 
  13. echo :       a KPRINT.CTL file setup for your printer.  Type: KPRINT -?K
  14. echo :       and press ENTER at the DOS level for help doing this.
  15. echo :
  16. echo :   1.  I have a printer ready to print using KPRINT.  
  17. echo :   2.  I have controlled my printer manually to printout 132 columns.
  18. echo :       My printer is ready to print.  [Printout will look same as # 1.]
  19. echo :   3.  I want to exit this procedure right now.
  20. kprint -?1
  21. if not errorlevel 1 goto bad_hit
  22. if errorlevel 4 goto bad_hit  
  23. if errorlevel 3 goto end
  24. if errorlevel 2 goto manual
  25. if errorlevel 1 goto kprint
  26. :bad_hit
  27. echo You did not choose a correct number; rerun this procedure again
  28. goto end
  29. :manual
  30. if not exist katad.kp goto misskp
  31. type katad.kp>prn
  32. echo  >prn
  33. goto end
  34. :kprint
  35. if not exist katad.kp goto misskp
  36. kprint -kmxnhc katad.kp
  37. goto end
  38. :misskp
  39. echo You're missing the file AD.KP
  40. :end
  41. 
  42.